home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 September / PCWorld_2007-09_cd.bin / system / ntfs / ntfsundelete.exe / {app} / os.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2007-02-05  |  24KB  |  782 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """OS routines for Mac, DOS, NT, or Posix depending on what system we're on.
  5.  
  6. This exports:
  7.   - all functions from posix, nt, os2, mac, or ce, e.g. unlink, stat, etc.
  8.   - os.path is one of the modules posixpath, ntpath, or macpath
  9.   - os.name is 'posix', 'nt', 'os2', 'mac', 'ce' or 'riscos'
  10.   - os.curdir is a string representing the current directory ('.' or ':')
  11.   - os.pardir is a string representing the parent directory ('..' or '::')
  12.   - os.sep is the (or a most common) pathname separator ('/' or ':' or '\\\\')
  13.   - os.extsep is the extension separator ('.' or '/')
  14.   - os.altsep is the alternate pathname separator (None or '/')
  15.   - os.pathsep is the component separator used in $PATH etc
  16.   - os.linesep is the line separator in text files ('\\r' or '\\n' or '\\r\\n')
  17.   - os.defpath is the default search path for executables
  18.   - os.devnull is the file path of the null device ('/dev/null', etc.)
  19.  
  20. Programs that import and use 'os' stand a better chance of being
  21. portable between different platforms.  Of course, they must then
  22. only use functions that are defined by all platforms (e.g., unlink
  23. and opendir), and leave all pathname manipulation to os.path
  24. (e.g., split and join).
  25. """
  26. import sys
  27. _names = sys.builtin_module_names
  28. __all__ = [
  29.     'altsep',
  30.     'curdir',
  31.     'pardir',
  32.     'sep',
  33.     'pathsep',
  34.     'linesep',
  35.     'defpath',
  36.     'name',
  37.     'path',
  38.     'devnull']
  39.  
  40. def _get_exports_list(module):
  41.     
  42.     try:
  43.         return list(module.__all__)
  44.     except AttributeError:
  45.         return _[1]
  46.     except:
  47.         []
  48.  
  49.  
  50. if 'posix' in _names:
  51.     name = 'posix'
  52.     linesep = '\n'
  53.     from posix import *
  54.     
  55.     try:
  56.         from posix import _exit
  57.     except ImportError:
  58.         pass
  59.  
  60.     import posixpath as path
  61.     import posix
  62.     __all__.extend(_get_exports_list(posix))
  63.     del posix
  64. elif 'nt' in _names:
  65.     name = 'nt'
  66.     linesep = '\r\n'
  67.     from nt import *
  68.     
  69.     try:
  70.         from nt import _exit
  71.     except ImportError:
  72.         pass
  73.  
  74.     import ntpath as path
  75.     import nt
  76.     __all__.extend(_get_exports_list(nt))
  77.     del nt
  78. elif 'os2' in _names:
  79.     name = 'os2'
  80.     linesep = '\r\n'
  81.     from os2 import *
  82.     
  83.     try:
  84.         from os2 import _exit
  85.     except ImportError:
  86.         pass
  87.  
  88.     if sys.version.find('EMX GCC') == -1:
  89.         import ntpath as path
  90.     else:
  91.         import os2emxpath as path
  92.         from _emx_link import link
  93.     import os2
  94.     __all__.extend(_get_exports_list(os2))
  95.     del os2
  96. elif 'mac' in _names:
  97.     name = 'mac'
  98.     linesep = '\r'
  99.     from mac import *
  100.     
  101.     try:
  102.         from mac import _exit
  103.     except ImportError:
  104.         pass
  105.  
  106.     import macpath as path
  107.     import mac
  108.     __all__.extend(_get_exports_list(mac))
  109.     del mac
  110. elif 'ce' in _names:
  111.     name = 'ce'
  112.     linesep = '\r\n'
  113.     from ce import *
  114.     
  115.     try:
  116.         from ce import _exit
  117.     except ImportError:
  118.         pass
  119.  
  120.     import ntpath as path
  121.     import ce
  122.     __all__.extend(_get_exports_list(ce))
  123.     del ce
  124. elif 'riscos' in _names:
  125.     name = 'riscos'
  126.     linesep = '\n'
  127.     from riscos import *
  128.     
  129.     try:
  130.         from riscos import _exit
  131.     except ImportError:
  132.         pass
  133.  
  134.     import riscospath as path
  135.     import riscos
  136.     __all__.extend(_get_exports_list(riscos))
  137.     del riscos
  138. else:
  139.     raise ImportError, 'no os specific module found'
  140. sys.modules['os.path'] = path
  141. from os.path import curdir, pardir, sep, pathsep, defpath, extsep, altsep, devnull
  142. del _names
  143.  
  144. def makedirs(name, mode = 511):
  145.     '''makedirs(path [, mode=0777])
  146.  
  147.     Super-mkdir; create a leaf directory and all intermediate ones.
  148.     Works like mkdir, except that any intermediate path segment (not
  149.     just the rightmost) will be created if it does not exist.  This is
  150.     recursive.
  151.  
  152.     '''
  153.     (head, tail) = path.split(name)
  154.     if not tail:
  155.         (head, tail) = path.split(head)
  156.     
  157.     if head and tail and not path.exists(head):
  158.         makedirs(head, mode)
  159.         if tail == curdir:
  160.             return None
  161.         
  162.     
  163.     mkdir(name, mode)
  164.  
  165.  
  166. def removedirs(name):
  167.     '''removedirs(path)
  168.  
  169.     Super-rmdir; remove a leaf directory and empty all intermediate
  170.     ones.  Works like rmdir except that, if the leaf directory is
  171.     successfully removed, directories corresponding to rightmost path
  172.     segments will be pruned away until either the whole path is
  173.     consumed or an error occurs.  Errors during this latter phase are
  174.     ignored -- they generally mean that a directory was not empty.
  175.  
  176.     '''
  177.     rmdir(name)
  178.     (head, tail) = path.split(name)
  179.     if not tail:
  180.         (head, tail) = path.split(head)
  181.     
  182.     while head and tail:
  183.         
  184.         try:
  185.             rmdir(head)
  186.         except error:
  187.             break
  188.  
  189.         (head, tail) = path.split(head)
  190.  
  191.  
  192. def renames(old, new):
  193.     '''renames(old, new)
  194.  
  195.     Super-rename; create directories as necessary and delete any left
  196.     empty.  Works like rename, except creation of any intermediate
  197.     directories needed to make the new pathname good is attempted
  198.     first.  After the rename, directories corresponding to rightmost
  199.     path segments of the old name will be pruned way until either the
  200.     whole path is consumed or a nonempty directory is found.
  201.  
  202.     Note: this function can fail with the new directory structure made
  203.     if you lack permissions needed to unlink the leaf directory or
  204.     file.
  205.  
  206.     '''
  207.     (head, tail) = path.split(new)
  208.     if head and tail and not path.exists(head):
  209.         makedirs(head)
  210.     
  211.     rename(old, new)
  212.     (head, tail) = path.split(old)
  213.     if head and tail:
  214.         
  215.         try:
  216.             removedirs(head)
  217.         except error:
  218.             pass
  219.         except:
  220.             None<EXCEPTION MATCH>error
  221.         
  222.  
  223.     None<EXCEPTION MATCH>error
  224.  
  225. __all__.extend([
  226.     'makedirs',
  227.     'removedirs',
  228.     'renames'])
  229.  
  230. def walk(top, topdown = True, onerror = None):
  231.     '''Directory tree generator.
  232.  
  233.     For each directory in the directory tree rooted at top (including top
  234.     itself, but excluding \'.\' and \'..\'), yields a 3-tuple
  235.  
  236.         dirpath, dirnames, filenames
  237.  
  238.     dirpath is a string, the path to the directory.  dirnames is a list of
  239.     the names of the subdirectories in dirpath (excluding \'.\' and \'..\').
  240.     filenames is a list of the names of the non-directory files in dirpath.
  241.     Note that the names in the lists are just names, with no path components.
  242.     To get a full path (which begins with top) to a file or directory in
  243.     dirpath, do os.path.join(dirpath, name).
  244.  
  245.     If optional arg \'topdown\' is true or not specified, the triple for a
  246.     directory is generated before the triples for any of its subdirectories
  247.     (directories are generated top down).  If topdown is false, the triple
  248.     for a directory is generated after the triples for all of its
  249.     subdirectories (directories are generated bottom up).
  250.  
  251.     When topdown is true, the caller can modify the dirnames list in-place
  252.     (e.g., via del or slice assignment), and walk will only recurse into the
  253.     subdirectories whose names remain in dirnames; this can be used to prune
  254.     the search, or to impose a specific order of visiting.  Modifying
  255.     dirnames when topdown is false is ineffective, since the directories in
  256.     dirnames have already been generated by the time dirnames itself is
  257.     generated.
  258.  
  259.     By default errors from the os.listdir() call are ignored.  If
  260.     optional arg \'onerror\' is specified, it should be a function; it
  261.     will be called with one argument, an os.error instance.  It can
  262.     report the error to continue with the walk, or raise the exception
  263.     to abort the walk.  Note that the filename is available as the
  264.     filename attribute of the exception object.
  265.  
  266.     Caution:  if you pass a relative pathname for top, don\'t change the
  267.     current working directory between resumptions of walk.  walk never
  268.     changes the current directory, and assumes that the client doesn\'t
  269.     either.
  270.  
  271.     Example:
  272.  
  273.     from os.path import join, getsize
  274.     for root, dirs, files in walk(\'python/Lib/email\'):
  275.         print root, "consumes",
  276.         print sum([getsize(join(root, name)) for name in files]),
  277.         print "bytes in", len(files), "non-directory files"
  278.         if \'CVS\' in dirs:
  279.             dirs.remove(\'CVS\')  # don\'t visit CVS directories
  280.     '''
  281.     join = join
  282.     isdir = isdir
  283.     islink = islink
  284.     import os.path
  285.     
  286.     try:
  287.         names = listdir(top)
  288.     except error:
  289.         err = None
  290.         if onerror is not None:
  291.             onerror(err)
  292.         
  293.         return None
  294.  
  295.     dirs = []
  296.     nondirs = []
  297.     for name in names:
  298.         if isdir(join(top, name)):
  299.             dirs.append(name)
  300.             continue
  301.         nondirs.append(name)
  302.     
  303.     if topdown:
  304.         yield (top, dirs, nondirs)
  305.     
  306.     for name in dirs:
  307.         path = join(top, name)
  308.         if not islink(path):
  309.             for x in walk(path, topdown, onerror):
  310.                 yield x
  311.             
  312.     
  313.     if not topdown:
  314.         yield (top, dirs, nondirs)
  315.     
  316.  
  317. __all__.append('walk')
  318.  
  319. try:
  320.     environ
  321. except NameError:
  322.     environ = { }
  323.  
  324.  
  325. def execl(file, *args):
  326.     '''execl(file, *args)
  327.  
  328.     Execute the executable file with argument list args, replacing the
  329.     current process. '''
  330.     execv(file, args)
  331.  
  332.  
  333. def execle(file, *args):
  334.     '''execle(file, *args, env)
  335.  
  336.     Execute the executable file with argument list args and
  337.     environment env, replacing the current process. '''
  338.     env = args[-1]
  339.     execve(file, args[:-1], env)
  340.  
  341.  
  342. def execlp(file, *args):
  343.     '''execlp(file, *args)
  344.  
  345.     Execute the executable file (which is searched for along $PATH)
  346.     with argument list args, replacing the current process. '''
  347.     execvp(file, args)
  348.  
  349.  
  350. def execlpe(file, *args):
  351.     '''execlpe(file, *args, env)
  352.  
  353.     Execute the executable file (which is searched for along $PATH)
  354.     with argument list args and environment env, replacing the current
  355.     process. '''
  356.     env = args[-1]
  357.     execvpe(file, args[:-1], env)
  358.  
  359.  
  360. def execvp(file, args):
  361.     '''execp(file, args)
  362.  
  363.     Execute the executable file (which is searched for along $PATH)
  364.     with argument list args, replacing the current process.
  365.     args may be a list or tuple of strings. '''
  366.     _execvpe(file, args)
  367.  
  368.  
  369. def execvpe(file, args, env):
  370.     '''execvpe(file, args, env)
  371.  
  372.     Execute the executable file (which is searched for along $PATH)
  373.     with argument list args and environment env , replacing the
  374.     current process.
  375.     args may be a list or tuple of strings. '''
  376.     _execvpe(file, args, env)
  377.  
  378. __all__.extend([
  379.     'execl',
  380.     'execle',
  381.     'execlp',
  382.     'execlpe',
  383.     'execvp',
  384.     'execvpe'])
  385.  
  386. def _execvpe(file, args, env = None):
  387.     ENOENT = ENOENT
  388.     ENOTDIR = ENOTDIR
  389.     import errno
  390.     if env is not None:
  391.         func = execve
  392.         argrest = (args, env)
  393.     else:
  394.         func = execv
  395.         argrest = (args,)
  396.         env = environ
  397.     (head, tail) = path.split(file)
  398.     if head:
  399.         func(file, *argrest)
  400.         return None
  401.     
  402.     if 'PATH' in env:
  403.         envpath = env['PATH']
  404.     else:
  405.         envpath = defpath
  406.     PATH = envpath.split(pathsep)
  407.     saved_exc = None
  408.     saved_tb = None
  409.     for dir in PATH:
  410.         fullname = path.join(dir, file)
  411.         
  412.         try:
  413.             func(fullname, *argrest)
  414.         continue
  415.         except error:
  416.             e = None
  417.             tb = sys.exc_info()[2]
  418.             if e.errno != ENOENT and e.errno != ENOTDIR and saved_exc is None:
  419.                 saved_exc = e
  420.                 saved_tb = tb
  421.             
  422.             saved_exc is None
  423.         
  424.  
  425.     
  426.     if saved_exc:
  427.         raise error, saved_exc, saved_tb
  428.     
  429.     raise error, e, tb
  430.  
  431.  
  432. try:
  433.     putenv
  434. except NameError:
  435.     pass
  436.  
  437. import UserDict
  438. if name in ('os2', 'nt'):
  439.     
  440.     def unsetenv(key):
  441.         putenv(key, '')
  442.  
  443.  
  444. if name == 'riscos':
  445.     from riscosenviron import _Environ
  446. elif name in ('os2', 'nt'):
  447.     
  448.     class _Environ(UserDict.IterableUserDict):
  449.         
  450.         def __init__(self, environ):
  451.             UserDict.UserDict.__init__(self)
  452.             data = self.data
  453.             for k, v in environ.items():
  454.                 data[k.upper()] = v
  455.             
  456.  
  457.         
  458.         def __setitem__(self, key, item):
  459.             putenv(key, item)
  460.             self.data[key.upper()] = item
  461.  
  462.         
  463.         def __getitem__(self, key):
  464.             return self.data[key.upper()]
  465.  
  466.         
  467.         try:
  468.             unsetenv
  469.         except NameError:
  470.             
  471.             def __delitem__(self, key):
  472.                 del self.data[key.upper()]
  473.  
  474.  
  475.         
  476.         def __delitem__(self, key):
  477.             unsetenv(key)
  478.             del self.data[key.upper()]
  479.  
  480.         
  481.         def has_key(self, key):
  482.             return key.upper() in self.data
  483.  
  484.         
  485.         def __contains__(self, key):
  486.             return key.upper() in self.data
  487.  
  488.         
  489.         def get(self, key, failobj = None):
  490.             return self.data.get(key.upper(), failobj)
  491.  
  492.         
  493.         def copy(self):
  494.             return dict(self)
  495.  
  496.  
  497. else:
  498.     
  499.     class _Environ(UserDict.IterableUserDict):
  500.         
  501.         def __init__(self, environ):
  502.             UserDict.UserDict.__init__(self)
  503.             self.data = environ
  504.  
  505.         
  506.         def __setitem__(self, key, item):
  507.             putenv(key, item)
  508.             self.data[key] = item
  509.  
  510.         
  511.         try:
  512.             unsetenv
  513.         except NameError:
  514.             pass
  515.  
  516.         
  517.         def __delitem__(self, key):
  518.             unsetenv(key)
  519.             del self.data[key]
  520.  
  521.         
  522.         def copy(self):
  523.             return dict(self)
  524.  
  525.  
  526. environ = _Environ(environ)
  527.  
  528. def getenv(key, default = None):
  529.     """Get an environment variable, return None if it doesn't exist.
  530.     The optional second argument can specify an alternate default."""
  531.     return environ.get(key, default)
  532.  
  533. __all__.append('getenv')
  534.  
  535. def _exists(name):
  536.     
  537.     try:
  538.         eval(name)
  539.         return True
  540.     except NameError:
  541.         return False
  542.  
  543.  
  544. if _exists('fork') and not _exists('spawnv') and _exists('execv'):
  545.     P_WAIT = 0
  546.     P_NOWAIT = P_NOWAITO = 1
  547.     
  548.     def _spawnvef(mode, file, args, env, func):
  549.         pid = fork()
  550.         if not pid:
  551.             
  552.             try:
  553.                 if env is None:
  554.                     func(file, args)
  555.                 else:
  556.                     func(file, args, env)
  557.             _exit(127)
  558.  
  559.         elif mode == P_NOWAIT:
  560.             return pid
  561.         
  562.         while None:
  563.             (wpid, sts) = waitpid(pid, 0)
  564.             if WIFSTOPPED(sts):
  565.                 continue
  566.                 continue
  567.             if WIFSIGNALED(sts):
  568.                 return -WTERMSIG(sts)
  569.                 continue
  570.             if WIFEXITED(sts):
  571.                 return WEXITSTATUS(sts)
  572.                 continue
  573.             raise error, 'Not stopped, signaled or exited???'
  574.  
  575.     
  576.     def spawnv(mode, file, args):
  577.         """spawnv(mode, file, args) -> integer
  578.  
  579. Execute file with arguments from args in a subprocess.
  580. If mode == P_NOWAIT return the pid of the process.
  581. If mode == P_WAIT return the process's exit code if it exits normally;
  582. otherwise return -SIG, where SIG is the signal that killed it. """
  583.         return _spawnvef(mode, file, args, None, execv)
  584.  
  585.     
  586.     def spawnve(mode, file, args, env):
  587.         """spawnve(mode, file, args, env) -> integer
  588.  
  589. Execute file with arguments from args in a subprocess with the
  590. specified environment.
  591. If mode == P_NOWAIT return the pid of the process.
  592. If mode == P_WAIT return the process's exit code if it exits normally;
  593. otherwise return -SIG, where SIG is the signal that killed it. """
  594.         return _spawnvef(mode, file, args, env, execve)
  595.  
  596.     
  597.     def spawnvp(mode, file, args):
  598.         """spawnvp(mode, file, args) -> integer
  599.  
  600. Execute file (which is looked for along $PATH) with arguments from
  601. args in a subprocess.
  602. If mode == P_NOWAIT return the pid of the process.
  603. If mode == P_WAIT return the process's exit code if it exits normally;
  604. otherwise return -SIG, where SIG is the signal that killed it. """
  605.         return _spawnvef(mode, file, args, None, execvp)
  606.  
  607.     
  608.     def spawnvpe(mode, file, args, env):
  609.         """spawnvpe(mode, file, args, env) -> integer
  610.  
  611. Execute file (which is looked for along $PATH) with arguments from
  612. args in a subprocess with the supplied environment.
  613. If mode == P_NOWAIT return the pid of the process.
  614. If mode == P_WAIT return the process's exit code if it exits normally;
  615. otherwise return -SIG, where SIG is the signal that killed it. """
  616.         return _spawnvef(mode, file, args, env, execvpe)
  617.  
  618.  
  619. if _exists('spawnv'):
  620.     
  621.     def spawnl(mode, file, *args):
  622.         """spawnl(mode, file, *args) -> integer
  623.  
  624. Execute file with arguments from args in a subprocess.
  625. If mode == P_NOWAIT return the pid of the process.
  626. If mode == P_WAIT return the process's exit code if it exits normally;
  627. otherwise return -SIG, where SIG is the signal that killed it. """
  628.         return spawnv(mode, file, args)
  629.  
  630.     
  631.     def spawnle(mode, file, *args):
  632.         """spawnle(mode, file, *args, env) -> integer
  633.  
  634. Execute file with arguments from args in a subprocess with the
  635. supplied environment.
  636. If mode == P_NOWAIT return the pid of the process.
  637. If mode == P_WAIT return the process's exit code if it exits normally;
  638. otherwise return -SIG, where SIG is the signal that killed it. """
  639.         env = args[-1]
  640.         return spawnve(mode, file, args[:-1], env)
  641.  
  642.     __all__.extend([
  643.         'spawnv',
  644.         'spawnve',
  645.         'spawnl',
  646.         'spawnle'])
  647.  
  648. if _exists('spawnvp'):
  649.     
  650.     def spawnlp(mode, file, *args):
  651.         """spawnlp(mode, file, *args) -> integer
  652.  
  653. Execute file (which is looked for along $PATH) with arguments from
  654. args in a subprocess with the supplied environment.
  655. If mode == P_NOWAIT return the pid of the process.
  656. If mode == P_WAIT return the process's exit code if it exits normally;
  657. otherwise return -SIG, where SIG is the signal that killed it. """
  658.         return spawnvp(mode, file, args)
  659.  
  660.     
  661.     def spawnlpe(mode, file, *args):
  662.         """spawnlpe(mode, file, *args, env) -> integer
  663.  
  664. Execute file (which is looked for along $PATH) with arguments from
  665. args in a subprocess with the supplied environment.
  666. If mode == P_NOWAIT return the pid of the process.
  667. If mode == P_WAIT return the process's exit code if it exits normally;
  668. otherwise return -SIG, where SIG is the signal that killed it. """
  669.         env = args[-1]
  670.         return spawnvpe(mode, file, args[:-1], env)
  671.  
  672.     __all__.extend([
  673.         'spawnvp',
  674.         'spawnvpe',
  675.         'spawnlp',
  676.         'spawnlpe'])
  677.  
  678. if _exists('fork'):
  679.     if not _exists('popen2'):
  680.         
  681.         def popen2(cmd, mode = 't', bufsize = -1):
  682.             """Execute the shell command 'cmd' in a sub-process.  On UNIX, 'cmd'
  683.             may be a sequence, in which case arguments will be passed directly to
  684.             the program without shell intervention (as with os.spawnv()).  If 'cmd'
  685.             is a string it will be passed to the shell (as with os.system()). If
  686.             'bufsize' is specified, it sets the buffer size for the I/O pipes.  The
  687.             file objects (child_stdin, child_stdout) are returned."""
  688.             import popen2
  689.             (stdout, stdin) = popen2.popen2(cmd, bufsize)
  690.             return (stdin, stdout)
  691.  
  692.         __all__.append('popen2')
  693.     
  694.     if not _exists('popen3'):
  695.         
  696.         def popen3(cmd, mode = 't', bufsize = -1):
  697.             """Execute the shell command 'cmd' in a sub-process.  On UNIX, 'cmd'
  698.             may be a sequence, in which case arguments will be passed directly to
  699.             the program without shell intervention (as with os.spawnv()).  If 'cmd'
  700.             is a string it will be passed to the shell (as with os.system()). If
  701.             'bufsize' is specified, it sets the buffer size for the I/O pipes.  The
  702.             file objects (child_stdin, child_stdout, child_stderr) are returned."""
  703.             import popen2
  704.             (stdout, stdin, stderr) = popen2.popen3(cmd, bufsize)
  705.             return (stdin, stdout, stderr)
  706.  
  707.         __all__.append('popen3')
  708.     
  709.     if not _exists('popen4'):
  710.         
  711.         def popen4(cmd, mode = 't', bufsize = -1):
  712.             """Execute the shell command 'cmd' in a sub-process.  On UNIX, 'cmd'
  713.             may be a sequence, in which case arguments will be passed directly to
  714.             the program without shell intervention (as with os.spawnv()).  If 'cmd'
  715.             is a string it will be passed to the shell (as with os.system()). If
  716.             'bufsize' is specified, it sets the buffer size for the I/O pipes.  The
  717.             file objects (child_stdin, child_stdout_stderr) are returned."""
  718.             import popen2
  719.             (stdout, stdin) = popen2.popen4(cmd, bufsize)
  720.             return (stdin, stdout)
  721.  
  722.         __all__.append('popen4')
  723.     
  724.  
  725. import copy_reg as _copy_reg
  726.  
  727. def _make_stat_result(tup, dict):
  728.     return stat_result(tup, dict)
  729.  
  730.  
  731. def _pickle_stat_result(sr):
  732.     (type, args) = sr.__reduce__()
  733.     return (_make_stat_result, args)
  734.  
  735.  
  736. try:
  737.     _copy_reg.pickle(stat_result, _pickle_stat_result, _make_stat_result)
  738. except NameError:
  739.     pass
  740.  
  741.  
  742. def _make_statvfs_result(tup, dict):
  743.     return statvfs_result(tup, dict)
  744.  
  745.  
  746. def _pickle_statvfs_result(sr):
  747.     (type, args) = sr.__reduce__()
  748.     return (_make_statvfs_result, args)
  749.  
  750.  
  751. try:
  752.     _copy_reg.pickle(statvfs_result, _pickle_statvfs_result, _make_statvfs_result)
  753. except NameError:
  754.     pass
  755.  
  756. if not _exists('urandom'):
  757.     _urandomfd = None
  758.     
  759.     def urandom(n):
  760.         '''urandom(n) -> str
  761.  
  762.         Return a string of n random bytes suitable for cryptographic use.
  763.  
  764.         '''
  765.         global _urandomfd
  766.         if _urandomfd is None:
  767.             
  768.             try:
  769.                 _urandomfd = open('/dev/urandom', O_RDONLY)
  770.             _urandomfd = NotImplementedError
  771.  
  772.         
  773.         if _urandomfd is NotImplementedError:
  774.             raise NotImplementedError('/dev/urandom (or equivalent) not found')
  775.         
  776.         bytes = ''
  777.         while len(bytes) < n:
  778.             bytes += read(_urandomfd, n - len(bytes))
  779.         return bytes
  780.  
  781.  
  782.